home *** CD-ROM | disk | FTP | other *** search
/ Chip 2006 July / CHIP 2006-07.2.iso / program / google / google-browsersync.xpi / chrome / chromeFiles / content / syncing.xul < prev    next >
Encoding:
Extensible Markup Language  |  2006-06-07  |  836 b   |  23 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3.  
  4. <dialog
  5.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  6.   id="clb-syncing" title="Please Wait" orient="vertical" buttons="cancel"
  7.   onload="CLB_form.handleDialogLoad()"
  8.   ondialogcancel="CLB_form.handleDialogCancel()">
  9.  
  10.   <label style="font-weight:bold; margin-bottom:0.5em" 
  11.     value="Google Browser Sync is synchronizing your browser"/>
  12.   <progressmeter id="clb-progress" mode="undetermined" />
  13.   <label id="clb-status" value="Connecting to Google Browser Sync"/>
  14.  
  15.   <script type="application/x-javascript">
  16.     var CLB_form = 
  17.       new (Components.classes["@google.com/browserstate/app-context;1"]
  18.                      .getService().wrappedJSObject)
  19.                      .CLB_SyncingForm(window);
  20.   </script>
  21.  
  22. </dialog>
  23.